home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 July & August / PCWorld_2006-07-08_cd.bin / v cisle / acehtml / acehtmlfreeware.exe / scriptdef / Energy Equivalents.sd < prev    next >
INI File  |  2004-06-28  |  7KB  |  225 lines

  1. [SUBJECT]
  2. Description=Converts bewteen different units of energy
  3. ImageIndex=-1
  4. Folder=Mathematics
  5.  
  6.  
  7. [BODY_TEXT]
  8. ;<!-- Cut-N-Paste JavaScript from ISN Toolbox 
  9. ;Copyright 1996, Infohiway Server Network.  Restricted use is hereby
  10. ;granted (both personal and commercial use OK so long as this code is 
  11. ;not *directly* sold), providing this notice is buried somewhere deep
  12. ;in your HTML document.  A link to http://www.infohiway.com is always 
  13. ;appreciated, but is absolutely and positively not necessary. :-) -->
  14. ;<script language="JavaScript">
  15. ;
  16. ;<!-- Hide JavaScript from Java-Impaired Browsers
  17. ;
  18. ;function initArray() {
  19. ;  this.length = initArray.arguments.length;
  20. ;  for (var i = 0; i < this.length; i++) {
  21. ;    this[i] = initArray.arguments[i];
  22. ;
  23. ;    }
  24. ;
  25. ;  }
  26. ;
  27. ;/* Please don't ask about this work-around. It works... We're sure arrays
  28. ;
  29. ;    will be better supported soon. */
  30. ;
  31. ;var isn10 = new initArray("4b","5b","8b","8b");
  32. ;
  33. ;isn10[0] = "~01~10.10197~20.7376~32.778e-7~43.777e-7~53.725e-7~60.009869~70.0002388~80.0009478~9";
  34. ;
  35. ;isn10[1] = "~09.80665~11~27.233~32.724e-6~43.7037e-6~53.653e-6~60.09678~70.002342~80.009295~9";
  36. ;
  37. ;isn10[2] = "~01.356~10.1383~21~33.766e-7~45.1206e-7~55.0505e-7~60.01338~70.0003238~80.001285~9";
  38. ;
  39. ;isn10[3] = "~03.6e6~13.671e5~22.655e6~31~41.3596~51.341~635528~7859.9~83412~9";
  40. ;
  41. ;isn10[4] = "~02.648e6~12.7e5~21.9529e6~30.7355~41~50.9863~626131~7632.4~82510~9";
  42. ;
  43. ;isn10[5] = "~02.6845e6~12.7375e5~21.98e6~30.7457~41.0139~51~626493~7641.2~82544~9";
  44. ;
  45. ;isn10[6] = "~0101.333~110.333~274.74~32.815e-5~43.827e-5~53.775e-5~61~70.0242~80.09604~9";
  46. ;
  47. ;isn10[7] = "~04187~1426.9~23088~30.001163~40.001581~50.001560~641.32~71~83.968~9";
  48. ;
  49. ;isn10[8] = "~01055~1107.6~2778.2~32.931e-4~43.985e-4~53.93e-4~610.41~70.252~81~9";
  50. ;
  51. ;
  52. ;
  53. ;
  54. ;
  55. ;function eneCon() {
  56. ;
  57. ;  // First, get the variables checked by the user
  58. ;
  59. ;  for (var i = 0; i < 9; i++) {
  60. ;
  61. ;    if (document.isnform10.enei[i].checked) {
  62. ;
  63. ;      enei = i;
  64. ;
  65. ;      eneinm = document.isnform10.enei[i].value;
  66. ;
  67. ;      }
  68. ;
  69. ;    }
  70. ;
  71. ;  for (var i = 0; i < 9; i++) {
  72. ;
  73. ;    if (document.isnform10.eneo[i].checked) {
  74. ;
  75. ;      eneo = i;
  76. ;
  77. ;      eneonm = document.isnform10.eneo[i].value;
  78. ;
  79. ;      }
  80. ;
  81. ;    }
  82. ;
  83. ;  // Now grab the numeric input by user and parse to be sure numeric
  84. ;
  85. ;  useri = document.isnform10.eneinp.value;
  86. ;
  87. ;  if (useri == 0) {
  88. ;
  89. ;    useri = 1;
  90. ;
  91. ;    document.isnform10.eneinp.value = useri;
  92. ;
  93. ;    }
  94. ;
  95. ;  mulstr = isn10[enei];
  96. ;
  97. ;  picker = "~" + eneo;
  98. ;
  99. ;  ps = mulstr.indexOf(picker);
  100. ;
  101. ;  eneo++;
  102. ;
  103. ;  picker = "~" + eneo;
  104. ;
  105. ;  ps1 = mulstr.indexOf(picker);
  106. ;
  107. ;  mulstr = mulstr.substring((ps + 2),ps1);
  108. ;
  109. ;  ps = (useri * mulstr);
  110. ;
  111. ;  picker = "";
  112. ;
  113. ;  picker += ps;
  114. ;
  115. ;  ps1 = picker.indexOf(".");
  116. ;
  117. ;  if (ps1 > -1) {
  118. ;
  119. ;    // Correct for binary/floating point conversion error
  120. ;
  121. ;    ps = ps + .000001;
  122. ;
  123. ;    picker = "";
  124. ;
  125. ;    picker += ps;
  126. ;
  127. ;    ps2 = picker.indexOf("e");
  128. ;
  129. ;    if (ps2 < 0) {
  130. ;
  131. ;      picker = picker.substring(0,(ps1 + 6));
  132. ;
  133. ;      }
  134. ;
  135. ;    if (ps2 == 0 || ps2 > 0) {
  136. ;
  137. ;      ps3 = picker.indexOf("00000");
  138. ;
  139. ;      if (ps3 > 0) {
  140. ;
  141. ;        picker = picker.substring(0,ps3 + 1) + picker.substring(ps2,picker.length);
  142. ;
  143. ;        }
  144. ;
  145. ;      }
  146. ;
  147. ;    }
  148. ;
  149. ;  picker = useri + " " + eneinm + " = " + picker + " " + eneonm;
  150. ;
  151. ;  document.isnform10.eneout.value = picker;
  152. ;
  153. ;  }
  154. ;
  155. ;// End Hiding -->
  156. ;
  157. ;
  158. ;
  159. ;</script>
  160. ;<form name="isnform10">
  161. ;<table border="1" width="486" summary="">
  162. ;
  163. ;<tr><td colspan="10" align="center"><font color="blue"><b>`Caption`</b></FONT></td></tr>
  164. ;
  165. ;<tr><td colspan="10" valign="top"><font size="1"><b>First, type the number you wish converted here: </b>
  166. ;
  167. ;<input type="text" name="eneinp" size="30" value="" onChange="eneCon();"><br><b>Then, click radio buttons for desired conversion:</B></font></td></tr>
  168. ;
  169. ;<tr><td align="center"><font color="red" size="1"><b>Fm:</b></font></td>
  170. ;
  171. ;<td align="center" valign="top"><font size="1">Joules<br><input type="radio" name="enei" value="Joules" checked onClick = ""></FONT></td>
  172. ;
  173. ;<td align="center" valign="top"><font size="1">Kg-meters<br><input type="radio" name="enei" value="Kg-meters" onClick = ""></FONT></td>
  174. ;
  175. ;<td align="center" valign="top"><font size="1">Ft-lbs<br><input type="radio" name="enei" value="Ft-lbs" onClick = ""></FONT></td>
  176. ;
  177. ;<td align="center" valign="top"><font size="1">Kw-hrs<br><input type="radio" name="enei" value="Kw-hrs" onClick = ""></FONT></td>
  178. ;
  179. ;<td align="center" valign="top"><font size="1">Metric Hp-hrs<br><input type="radio" name="enei" value="Metric Hp-hrs" onClick = ""></FONT></td>
  180. ;
  181. ;<td align="center" valign="top"><font size="1">US Hp-hrs<br><input type="radio" name="enei" value="US Hp-hrs" onClick = ""></FONT></td>
  182. ;
  183. ;<td align="center" valign="top"><font size="1">Liter-atm<br><input type="radio" name="enei" value="Liter-atm" onClick = ""></FONT></td>
  184. ;
  185. ;<td align="center" valign="top"><font size="1">K-cal<br><input type="radio" name="enei" value="K-cal" onClick = ""></FONT></td>
  186. ;
  187. ;<td align="center" valign="top"><font size="1">Btu<br><input type="radio" name="enei" value="Btu" onClick = ""></FONT></td></tr>
  188. ;
  189. ;<tr><td align="center"><font color="red" size="1"><b>To:</b></FONT></td>
  190. ;
  191. ;<td align="center" valign="top"><font size="1">Joules<br><input type="radio" name="eneo" value="Joules" onClick = ""></FONT></td>
  192. ;
  193. ;<td align="center" valign="top"><font size="1">Kg-meters<br><input type="radio" name="eneo" value="Kg-meters" checked onClick = ""></FONT></td>
  194. ;
  195. ;<td align="center" valign="top"><font size="1">Ft-lbs<br><input type="radio" name="eneo" value="Ft-lbs" onClick = ""></FONT></td>
  196. ;
  197. ;<td align="center" valign="top"><font size="1">Kw-hrs<br><input type="radio" name="eneo" value="Kw-hrs" onClick = ""></FONT></td>
  198. ;
  199. ;<td align="center" valign="top"><font size="1">Metric Hp-hrs<br><input type="radio" name="eneo" value="Metric Hp-hrs" onClick = ""></FONT></td>
  200. ;
  201. ;<td align="center" valign="top"><font size="1">US Hp-hrs<br><input type="radio" name="eneo" value="US Hp-hrs" onClick = ""></FONT></td>
  202. ;
  203. ;<td align="center" valign="top"><font size="1">Liter-atm<br><input type="radio" name="eneo" value="Liter-atm" onClick = ""></FONT></td>
  204. ;
  205. ;<td align="center" valign="top"><font size="1">K-cal<br><input type="radio" name="eneo" value="K-cal" onClick = ""></FONT></td>
  206. ;
  207. ;<td align="center" valign="top"><font size="1">Btu<br><input type="radio" name="eneo" value="Btu" onClick = ""></FONT></td></tr>
  208. ;
  209. ;<tr><td colspan="10" align="center" valign="top"><font size="1"><input type="button" value=" Click for Conversion " onClick="eneCon();"> 
  210. ;<input type="reset" value=" Reset Values "><br><input type="text" name="eneout" size="60" value="" onClick="eneCon();">
  211. ;
  212. ;</font></td></tr>
  213. ;
  214. ;</table></form>
  215. ;
  216. ;<p>
  217. ;
  218.  
  219.  
  220. [`Caption`]
  221. Kind=S
  222. Value=Energy/Work Equivalents
  223.  
  224.  
  225.